home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / adg_4_6.zip / METER.DEF < prev    next >
Text File  |  1991-02-21  |  693b  |  23 lines

  1. ; Module name: Meter.DEF
  2. ; Programmer : Jeffrey M. Richter
  3.  
  4. LIBRARY     METER
  5. DESCRIPTION 'Meter Custom Control Library'
  6. EXETYPE     WINDOWS
  7. STUB        'WinStub.Exe'
  8.  
  9. ;The code segment is marked as PRELOAD FIXED NONDISCARDABLE because this 
  10. ;module is used by the Setup Application presented in Chapter 8.
  11. ;In a DLL, Windows allows code segments to be discarded if FIXED is
  12. ;not specified.  This is why FIXED appears below.
  13. CODE        PRELOAD FIXED NONDISCARDABLE
  14. DATA        MOVEABLE PRELOAD SINGLE
  15. HEAPSIZE    1024
  16. EXPORTS  
  17.    WEP            @1    RESIDENTNAME
  18.    MeterInfo      @2
  19.    MeterStyle     @3
  20.    MeterFlags     @4
  21.    MeterWndFn     @5
  22.    MeterDlgFn     @6
  23.